From 936e2adf650a8f5e1f36e3c0712c14d7761d3406 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 11 Sep 2013 13:27:22 -0400 Subject: [PATCH] * lisp/savehist.el: No need for cl when compiling on Emacs. --- lisp/ChangeLog | 4 ++++ lisp/savehist.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 32e5e98a79b..aab21007ae8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-09-11 Glenn Morris + + * savehist.el: No need for cl when compiling on Emacs. + 2013-09-11 Stefan Monnier * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization diff --git a/lisp/savehist.el b/lisp/savehist.el index 374e57feb1f..379818b2707 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el @@ -49,7 +49,7 @@ (require 'custom) (eval-when-compile - (require 'cl)) + (if (featurep 'xemacs) (require 'cl))) ;; User variables -- 2.30.2